home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / bit / RCS / Bit_AnySet.c,v < prev    next >
Text File  |  1988-06-19  |  2KB  |  88 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.34.46;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * Bit_FindFirstClear.c --
  26.  *
  27.  *    Source code for the Bit_FindFirstClear library procedure.
  28.  *
  29.  * Copyright 1988 Regents of the University of California
  30.  * Permission to use, copy, modify, and distribute this
  31.  * software and its documentation for any purpose and without
  32.  * fee is hereby granted, provided that the above copyright
  33.  * notice appear in all copies.  The University of California
  34.  * makes no representations about the suitability of this
  35.  * software for any purpose.  It is provided "as is" without
  36.  * express or implied warranty.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include <sprite.h>
  44. #include "bit.h"
  45. #include "bitInt.h"
  46.  
  47.  
  48. /*-
  49.  *-----------------------------------------------------------------------
  50.  *
  51.  * Bit_AnySet --
  52.  *
  53.  *    See if any bit in the mask is set
  54.  *
  55.  * Results:
  56.  *    TRUE if one or more bit(s) is(are) set.
  57.  *
  58.  * Side Effects:
  59.  *    None.
  60.  *
  61.  *-----------------------------------------------------------------------
  62.  */
  63.  
  64. Boolean
  65. Bit_AnySet(numBits, maskPtr)
  66.     int              numBits;      /* Number of bits in array */
  67.     register int  *maskPtr;     /* The array of bits */
  68. {
  69.     register int  i;
  70.     register int  lastMask;
  71.  
  72.     GET_MASK_AND_INTS(numBits, i, lastMask);
  73.  
  74.     while (i != 0) {
  75.     if (*maskPtr) {
  76.         return (TRUE);
  77.     }
  78.     i--; maskPtr++;
  79.     }
  80.  
  81.     if (lastMask && (*maskPtr & lastMask)) {
  82.     return (TRUE);
  83.     } else {
  84.     return (FALSE);
  85.     }
  86. }
  87. @
  88.